home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 2 / Apprentice-Release2.iso / Source Code / C / Libraries / mgraph / trans.h < prev    next >
Encoding:
Text File  |  1994-03-22  |  2.4 KB  |  23 lines  |  [TEXT/????]

  1. /* Copyright 1994 Ralph Gonzalez */
  2.  
  3. /*
  4. *    FILE:        trans.h
  5. *    AUTHOR:        R. Gonzalez
  6. *    CREATED:    March 15, 1994
  7. *
  8. *    Defines 3D transformation (using trans. matrix) for mgraph
  9. *    application, and other coordinate operations.
  10. */
  11.  
  12. # include    "boolean.h"
  13.  
  14. /******************************************************************
  15. *    2D coordinate
  16. ******************************************************************/
  17. typedef struct    Coord2
  18. {
  19.     double    x,
  20.             y;
  21. } Coord2;
  22.  
  23. /***************************************************************